home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / applications / 1716 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  2.5 KB

  1. Path: paperboy.osf.org!kindel
  2. From: kindel@ghoti.osf.org (Bill Kindel)
  3. Newsgroups: comp.sys.amiga.applications
  4. Subject: Re: Commodore-64
  5. Date: 05 Feb 1996 15:38:20 GMT
  6. Organization: Open Software Foundation
  7. Distribution: world
  8. Message-ID: <KINDEL.96Feb5103820@ghoti.osf.org>
  9. References: <1996Jan31.154620.1@animal>
  10. NNTP-Posting-Host: ghoti.osf.org
  11. In-reply-to: romano@animal.fhhosp.ab.ca's message of 31 Jan 96 15:46:20 MDT
  12.  
  13.   <romano@animal.fhhosp.ab.ca> writes:
  14.  
  15. > I realize this is the Amiga users group but I don't know where to post
  16. > this message. This is the closest thing I could find. Ignorance is bliss?
  17.  
  18.   Try comp.sys.cbm for more/better information.
  19.  
  20. > I have an old commodore-64 that I need help with. It has a 5.25 floopy
  21. > disk drive that I would like to load programs from. What are the steps to
  22. > do this?  When I go to load any program and run it the end result is:
  23. > "Please press play on tape". I haven't used the machine in years and have
  24. > no documentation. The commands I am currently using are:
  25. >
  26. > LOAD "$", 8
  27. >
  28. > -> Ready
  29. >
  30. > LIST
  31. >
  32. -> listing of floopy directory. 
  33. >
  34. > LOAD "filename", 8
  35. >
  36. > -> Ready
  37. >
  38. > What do I do next? All my next attempts wind up as either "Syntax error"
  39. > or "Please press play on tape"
  40.  
  41.   "Press play on tape" is what you get when the load device (,8 is the
  42.   default for the C=1541 diskette drive) is omitted.  "Syntax error" says
  43.   that the BASIC interpreter didn't recognize the file as a program.
  44.  
  45.   Try this:
  46.  
  47.   LOAD "filename",8,1
  48.  
  49.   -> Ready
  50.  
  51.   LIST
  52.  
  53.   <You should see SOMETHING, even if the program isn't in BASIC>
  54.  
  55.   -> Ready
  56.  
  57.   RUN
  58.  
  59.   Note that the standard C=64 BASIC 2.0 can't always interpret programs
  60.   that were written for more advanced versions of the language, such as
  61.   SIMONS BASIC (needs the cartridge), C=128 BASIC 7.0, or BASIC-8.
  62.  
  63.   Good luck!
  64.  
  65. ===========================================================================
  66.   Bill Kindel          Voice:  617/621-7395 | Amiga  ///  Back again, to
  67.   Research Institute     FAX:  617/621-8696 |       ///   show the others
  68.   Open Software Foundation   kindel@osf.org |   \\\///    how its done!
  69.   -----------------------------------------------\XX/--------------------
  70.   PGP Public Key:       mail -s "get kindel" pgp-public-keys@pgp.mit.edu
  71.   PGP Fingerprint:      C3 D5 D8 F3 8F F8 2C 25  D1 AE 60 A1 70 8A 33 CC
  72.   Standard Disclaimer:  The opinions expressed above are my own and do
  73.                         not necessarily represent those of my employer.
  74. ===========================================================================
  75.  
  76.